-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add candlestick support #2053
base: master
Are you sure you want to change the base?
Add candlestick support #2053
Conversation
moutikabdessabour
commented
Oct 23, 2021
•
edited
Loading
edited
- change news.md
@@ -0,0 +1,37 @@ | |||
if(require(tidyquant)){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use testthat::skip_if_not_installed()
instead
#' @export | ||
to_basic.GeomRectCS <- function(data, ...){ | ||
to_basic.GeomRect(data, ...) | ||
} | ||
#' @export | ||
to_basic.GeomLinerangeBC <- function(data, ...){ | ||
data[, c("xend", "y", "yend")] <- data[, c("x", "ymin", "ymax")] | ||
to_basic.GeomSegment(data, ...) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably do more to come up with better hovertext
(the tooltip info is basically useless at this point).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll look into this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments/suggestions
Co-authored-by: Carson Sievert <[email protected]>
Co-authored-by: Carson Sievert <[email protected]>